From: Sebastian Ramacher Date: Sun, 16 Apr 2023 11:39:27 +0000 (+0200) Subject: examples: fix build of mux and resample_audio X-Git-Tag: archive/raspbian/7%8.1-3+rpi1~1^2^2^2^2^2^2^2^2^2^2^2~4 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/success//%22mailto:kde%40ewsoftware.de/%22/%22http:/www.example.com/cgi/success/%22mailto:kde%40ewsoftware.de/%22?a=commitdiff_plain;h=a344e40a02e96053261b23cadf4f243902b55d95;p=ffmpeg.git examples: fix build of mux and resample_audio The commits 0a69ca656b7178c260f68d50d07b2e16a073050c and cd8211527efbb9cad19db1c0d033da0749836e43 renamed the examples, but the targets were not updated. Hence, the builds are missing -lm. Signed-off-by: Sebastian Ramacher Gbp-Pq: Name 0002-examples-fix-build-of-mux-and-resample_audio.patch --- diff --git a/doc/examples/Makefile.example b/doc/examples/Makefile.example index 01712f42..dee9ebf2 100644 --- a/doc/examples/Makefile.example +++ b/doc/examples/Makefile.example @@ -43,8 +43,8 @@ OBJS=$(addsuffix .o,$(EXAMPLES)) # the following examples make explicit use of the math library avcodec: LDLIBS += -lm encode_audio: LDLIBS += -lm -muxing: LDLIBS += -lm -resampling_audio: LDLIBS += -lm +mux: LDLIBS += -lm +resample_audio: LDLIBS += -lm .phony: all clean-test clean